home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
smfdoor
/
frmaddre.frm
(
.txt
)
< prev
next >
Wrap
Visual Basic Form
|
1999-06-21
|
2KB
|
63 lines
VERSION 5.00
Begin VB.Form frmAddressFinder
BackColor = &H80000007&
Caption = "Address Finder"
ClientHeight = 1410
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
Icon = "frmAddressFinder.frx":0000
LinkTopic = "Form1"
ScaleHeight = 1410
ScaleWidth = 4680
StartUpPosition = 3 'Windows Default
Begin VB.CommandButton cmdCancel
Caption = "Cancel"
Height = 375
Left = 2640
TabIndex = 3
Top = 840
Width = 1575
End
Begin VB.CommandButton cmdOpen
Caption = "Open The DoorWay"
Height = 375
Left = 240
TabIndex = 2
Top = 840
Width = 1815
End
Begin VB.TextBox txtAddressFinder
Height = 285
Left = 120
TabIndex = 0
Top = 480
Width = 4215
End
Begin VB.Label lblAddress
BackColor = &H80000008&
Caption = "Enter The Address You would Like to Goto."
ForeColor = &H000000FF&
Height = 375
Left = 600
TabIndex = 1
Top = 120
Width = 3255
End
Attribute VB_Name = "frmAddressFinder"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdCancel_Click()
frmAddressFinder.Hide
End Sub
Private Sub cmdOpen_Click()
frmDoorToTheNet.txtAddress.Text = txtAddressFinder.Text
frmAddressFinder.Hide
frmDoorToTheNet.WebBrowser1.Navigate txtAddress
'Call frmDoorToTheNet.imgOpenDoor
'frmDoorToTheNet.WebBrowser1.Navigate txtAddress
'Call frmDoorToTheNet.imgOpenDoor_Click
End Sub